home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / laptop-mode-tools / modules / ac97-powersave next >
Text File  |  2009-10-06  |  638b  |  17 lines

  1. #! /bin/sh
  2. # Laptop mode tools module: Intel AC97 integrated audio power saving mode.
  3. #
  4.  
  5. if [ x$CONTROL_AC97_POWER = x1 ] ; then
  6.     if [ -w /sys/module/snd_ac97_codec/parameters/power_save ]; then
  7.         echo 1 > /sys/module/snd_ac97_codec/parameters/power_save
  8.         $LM_VERBOSE && echo "AC97 power save mode enabled." >> $OUTPUT
  9.     else
  10.         $LM_VERBOSE && echo "AC97 power saving is not available. Perhaps CONFIG_SND_AC97_POWER_SAVE option" >> $OUTPUT
  11.         $LM_VERBOSE && echo "is not set in the kernel config, or the snd_ac97_codec module is not loaded." >> $OUTPUT
  12.     fi
  13. else
  14.     $LM_VERBOSE && echo "AC97 audio power setting is disabled." >> $OUTPUT
  15. fi
  16.